Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633417 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/133 - Coin Toss Game

index.css cody/swapnilsparsh/30DaysOfJavaScript/133 - Coin Toss Game/index.css
80 Views
0 Comments
body{
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
overflow-x: hidden;
overflow-y: hidden;
font-family: 'Roboto Condensed';
}

README.md cody/swapnilsparsh/30DaysOfJavaScript/133 - Coin Toss Game/README.md
159 Views
0 Comments
# Coin-Toss-Game
index.js cody/swapnilsparsh/30DaysOfJavaScript/133 - Coin Toss Game/index.js
151 Views
0 Comments
//Variables
let player_score=0;
let Computer_score=0;
const btn = document.getElementById('head');
const score = document.getElementById('score');
const tail = document.getElementById('tail');
const Heads = document.getElementsByClassName('choosenHead');
let P_score = document.getElementById('playerScore');
index.html cody/swapnilsparsh/30DaysOfJavaScript/133 - Coin Toss Game/index.html
298 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital@1&family=Roboto+Condensed:ital@1&family=Roboto+Mono&family=Rubik+Glitch&family=Source+Sans+Pro:wght@300;400&display=swap" rel="stylesheet">